home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / bisonpcb.zip / READER.C < prev    next >
Text File  |  1987-02-13  |  36KB  |  1,667 lines

  1. /* Input parser for bison
  2.    Copyright (C) 1984, 1986 Bob Corbett and Free Software Foundation, Inc.
  3.   
  4. BISON is distributed in the hope that it will be useful, but WITHOUT ANY
  5. WARRANTY.  No author or distributor accepts responsibility to anyone
  6. for the consequences of using it or for whether it serves any
  7. particular purpose or works at all, unless he says so in writing.
  8. Refer to the BISON General Public License for full details.
  9.   
  10. Everyone is granted permission to copy, modify and redistribute BISON,
  11. but only under the conditions described in the BISON General Public
  12. License.  A copy of this license is supposed to have been given to you
  13. along with BISON so you can know your rights and responsibilities.  It
  14. should be in a file named COPYING.  Among other things, the copyright
  15. notice and this notice must be preserved on all copies.
  16.   
  17.  In other words, you are welcome to use, share and improve this program.
  18.  You are forbidden to forbid anyone else to use, share and improve
  19.  what you give them.   Help stamp out software-hoarding!  */
  20.  
  21. /* read in the grammar specification and record it in the format described in gram.h.
  22.   All guards are copied into the fguard file and all actions into faction,
  23.   in each case forming the body of a C function (yyguard or yyaction)
  24.   which contains a switch statement to decide which guard or action to execute.
  25.   
  26. The entry point is reader().  */
  27.  
  28. /*
  29.  * Port to PC by Whit Gregg
  30.  *               Nourse, Gregg & Browne, Inc.
  31.  *         1 Horizon Road
  32.  *         Fort Lee, NJ  07024
  33.  */
  34.  
  35.  
  36. #include <stdio.h>
  37. #include <ctype.h>
  38. #include <string.h>
  39. #include <malloc.h>
  40. #include <stdlib.h>
  41. #include "files.h"
  42. #include "new.h"
  43. #include "symtab.h"
  44. #include "lex.h"
  45. #include "gram.h"
  46. #include "func.h"
  47.  
  48.  
  49. #define    LTYPESTR    "\n#ifndef YYLTYPE\ntypedef\n  struct yyltype\n\
  50.     {\n      int timestamp;\n      int first_line;\n      int first_column;\n\
  51.       int last_line;\n      int last_column;\n      char *text;\n   }\n\
  52.   yyltype;\n\n#define YYLTYPE yyltype\n#endif\n\n"
  53.  
  54.  
  55.  
  56. /* Number of slots allocated (but not necessarily used yet) in `rline'  */
  57.     int rline_allocated;
  58.  
  59. extern int definesflag;
  60. extern bucket *symval;
  61. extern int numval;
  62.  
  63. typedef
  64.     struct symbol_list {
  65.     struct symbol_list *next;
  66.     bucket *sym;
  67.     bucket *ruleprec;
  68.     }
  69.  
  70.  symbol_list;
  71.  
  72.  
  73.  
  74. int lineno;
  75. bucket *symval;
  76. symbol_list *grammar;
  77. int start_flag;
  78. bucket *startval;
  79. char **tags;
  80.  
  81. static int typed;        /* nonzero if %union has been seen.  */
  82.  
  83. static int lastprec;        /* incremented for each %left, %right or
  84.                  * %nonassoc seen */
  85.  
  86. static int gensym_count;    /* incremented for each generated symbol */
  87.  
  88. static bucket *errtoken;
  89.  
  90. static FILE *fattrs1;
  91.  
  92. void 
  93. reader()
  94. {                /* WG */
  95.  
  96.     start_flag = 0;
  97.     startval = NULL;    /* start symbol not specified yet. */
  98.  
  99.     translations = 0;    /* initially assume token number translation
  100.                  * not needed.  */
  101.  
  102.     nsyms = 1;
  103.     nvars = 0;
  104.     nrules = 0;
  105.     nitems = 0;
  106.     rline_allocated = 10;
  107.     rline = NEW2(rline_allocated, short);
  108.  
  109.     typed = 0;
  110.     lastprec = 0;
  111.  
  112.     gensym_count = 0;
  113.  
  114.     semantic_parser = 0;
  115.     pure_parser = 0;
  116.  
  117.     grammar = NULL;
  118.  
  119.     /*
  120.      * fattrs1 = ftable;  JF use fattrs instead  /* Unless/until fattrs
  121.      * is opened, use ftable instead.  
  122.      */
  123.     fattrs1 = fattrs;
  124.  
  125.     init_lex();
  126.     lineno = 1;
  127.  
  128.     /* initialize the symbol table.  */
  129.     tabinit();
  130.     /* construct the error token */
  131.     errtoken = getsym("error");
  132.     errtoken->class = STOKEN;
  133.     /* construct a token that represents all undefined literal tokens. */
  134.     /* it is always token number 2.  */
  135.     getsym("$illegal.")->class = STOKEN;
  136.     /*
  137.      * Read the declaration section.  Copy %{ ... %} groups to ftable or
  138.      * fattrs file. Also notice any %token, %left, etc. found there.  
  139.      */
  140.     fprintf(ftable, "\n/*  A Bison parser, made from %s  */\n\n", infile);
  141.     read_declarations();
  142.     /* output the definition of YYLTYPE into the fattrs or ftable file.  */
  143.     output_ltype();
  144.     /* start writing the guard and action files, if they are needed.  */
  145.     output_headers();
  146.     /*
  147.      * read in the grammar, build grammar in list form.  write out guards
  148.      * and actions.  
  149.      */
  150.     readgram();
  151.     /* write closing delimiters for actions and guards.  */
  152.     output_trailers();
  153.     /*
  154.      * assign the symbols their symbol numbers. Write #defines for the
  155.      * token symbols into fdefines if requested.  
  156.      */
  157.     packsymbols();
  158.     /* convert the grammar into the format described in gram.h.  */
  159.     packgram();
  160.     /*
  161.      * free the symbol table data structure since symbols are now all
  162.      * referred to by symbol number.  
  163.      */
  164.     free_symtab();
  165.     }
  166.  
  167.  
  168.  
  169. /* read from finput until %% is seen.  Discard the %%.
  170. Handle any % declarations,
  171. and copy the contents of any %{ ... %} groups to ftable or fattrs.  */
  172.  
  173. void 
  174. read_declarations()
  175. {                /* WG */
  176.     register int c;
  177.     register int tok;
  178.  
  179.     for (;;) {
  180.         c = skip_white_space();
  181.  
  182.         if (c == '%') {
  183.             tok = parse_percent_token();
  184.  
  185.             switch (tok) {
  186.                 case TWO_PERCENTS:
  187.                 return;
  188.  
  189.                 case PERCENT_LEFT_CURLY:
  190.                 copy_definition();
  191.                 break;
  192.  
  193.                 case TOKEN:
  194.                 parse_token_decl(STOKEN, SNTERM);
  195.                 break;
  196.  
  197.                 case NTERM:
  198.                 parse_token_decl(SNTERM, STOKEN);
  199.                 break;
  200.  
  201.                 case TYPE:
  202.                 parse_type_decl();
  203.                 break;
  204.  
  205.                 case START:
  206.                 parse_start_decl();
  207.                 break;
  208.  
  209.                 case UNION:
  210.                 parse_union_decl();
  211.                 break;
  212.  
  213.                 case LEFT:
  214.                 parse_assoc_decl(LEFT_ASSOC);
  215.                 break;
  216.  
  217.                 case RIGHT:
  218.                 parse_assoc_decl(RIGHT_ASSOC);
  219.                 break;
  220.  
  221.                 case NONASSOC:
  222.                 parse_assoc_decl(NON_ASSOC);
  223.                 break;
  224.  
  225.                 case SEMANTIC_PARSER:
  226.                 semantic_parser = 1;
  227.                 open_extra_files();
  228.                 fattrs1 = fattrs;
  229.                 break;
  230.  
  231.                 case PURE_PARSER:
  232.                 pure_parser = 1;
  233.                 break;
  234.  
  235.                 default:
  236.                 fatal("junk after % in definition section");
  237.                 }
  238.             }
  239.         else if (c == EOF)
  240.             fatal("no input grammar");
  241.         else        /* JF changed msg */
  242.             fatals("Unrecognized char '%c' in declaration section", c);
  243.  
  244.         }
  245.     }
  246.  
  247.  
  248. /* copy the contents of a %{ ... %} into the definitions file.
  249. The %{ has already been read.  Return after reading the %}.  */
  250. void 
  251. copy_definition()
  252. {                /* WG */
  253.     register int c;
  254.     register int match;
  255.     register int ended;
  256.     register int after_percent;    /* -1 while reading a character if
  257.                      * prev char was % */
  258.  
  259.     fprintf(fattrs1, "#line %d \"%s\"\n", lineno, infile);
  260.  
  261.     after_percent = 0;
  262.  
  263.     c = getc(finput);
  264.  
  265.     for (;;) {
  266.         switch (c) {
  267.             case '\n':
  268.             putc((char) c, fattrs1);    /* WG */
  269.             lineno++;
  270.             break;
  271.  
  272.             case '%':
  273.             after_percent = -1;
  274.             break;
  275.  
  276.             case '\'':
  277.             case '"':
  278.             match = c;
  279.             putc((char) c, fattrs1);    /* WG */
  280.             c = getc(finput);
  281.  
  282.             while (c != match) {
  283.                 if (c == EOF || c == '\n')
  284.                     fatal("unterminated string");
  285.  
  286.                 putc((char) c, fattrs1);    /* WG */
  287.  
  288.                 if (c == '\\') {
  289.                     c = getc(finput);
  290.                     if (c == EOF || c == '\n')
  291.                         fatal("unterminated string");
  292.                     putc((char) c, fattrs1);    /* WG */
  293.                     if (c == '\n')
  294.                         lineno++;
  295.                     }
  296.  
  297.                 c = getc(finput);
  298.                 }
  299.  
  300.             putc((char) c, fattrs1);    /* WG */
  301.             break;
  302.  
  303.             case '/':
  304.             putc((char) c, fattrs1);    /* WG */
  305.             c = getc(finput);
  306.             if (c != '*')
  307.                 continue;
  308.  
  309.             putc((char) c, fattrs1);    /* WG */
  310.             c = getc(finput);
  311.  
  312.             ended = 0;
  313.             while (!ended) {
  314.                 if (c == '*') {
  315.                     while (c == '*') {
  316.                         putc((char) c, fattrs1);    /* WG */
  317.                         c = getc(finput);
  318.                         }
  319.  
  320.                     if (c == '/') {
  321.                         putc((char) c, fattrs1);    /* WG */
  322.                         ended = 1;
  323.                         }
  324.                     }
  325.                 else if (c == '\n') {
  326.                     lineno++;
  327.                     putc((char) c, fattrs1);    /* WG */
  328.                     c = getc(finput);
  329.                     }
  330.                 else if (c == EOF)
  331.                     fatal("unterminated comment in %{ definition");
  332.                 else {
  333.                     putc((char) c, fattrs1);    /* WG */
  334.                     c = getc(finput);
  335.                     }
  336.                 }
  337.  
  338.             break;
  339.  
  340.             case EOF:
  341.             fatal("unterminated %{ definition");
  342.  
  343.             default:
  344.             putc((char) c, fattrs1);    /* WG */
  345.             }
  346.  
  347.         c = getc(finput);
  348.  
  349.         if (after_percent) {
  350.             if (c == '}')
  351.                 return;
  352.             putc('%', fattrs1);
  353.             }
  354.         after_percent = 0;
  355.  
  356.         }
  357.  
  358.     }
  359.  
  360.  
  361.  
  362. /*